This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Connection to Domino via DIIOP crashes J2EE server ~Umberto Nongeroson 19.Jan.04 03:40 PM a Web browser Domino Server All ReleasesAll Platforms
Not sure if it'll help or not but as of R6x, a port can now be specified when establishing a CORBA connection to the notes server. For example,
String astrIP = new StringBuffer(32).append("127.0.0.1").append(":63148").toString();
this.nsess = NotesFactory.createSession(astrIP, "some user name", "some user password");
With no port specified, it seems to depend on the HTTP server task. Using the port has made for more reliable connections in my experience.
dgg